
var scripts = document.getElementsByTagName('script');
var myScript = scripts[ scripts.length - 1 ];

var append_domain_name = "";
if ((myScript.src.indexOf("baxter.com/includes/") != -1) && (location.href.indexOf("www.baxter.com/") == -1)) {append_domain_name = "http://www.baxter.com";}

var queryString = myScript.src.replace(/^[^\?]+\??/,'');

var params = parseQuery( queryString );

function parseQuery ( query ) {
   var Params = new Object ();
   if ( ! query ) return Params; // return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) continue;
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}

function MultiDimensionalArray(iRows,iCols) 
   {
   var i; 
   var j; 
   var a = new Array(iRows++);
   for (i=0; i < iRows; i++) 
      { 
      a[i] = new Array(iCols); 
      for (j=0; j < iCols; j++) 
         { 
         a[i][j] = ""; 
         } 
      } 
   return(a); 
} 

var wcnewsarray = new Array();
var idx = 0;

function reverseSort(a, b) 
   { 
   if(a > b)
      {return -1}
   if(a < b) 
      {return 1}
   return 0 
   } 

/*
	nitems 	= number of news to display
	ncat		= News category (Press releases, Multimedia, Featured Stories)
	fcat		= Business / Functions
	fyear		= Year
	dmode		= Display mode (t = no visual; tpr = no visual for PR homepage; v = w/ visual;)
     ref      = homepage or achive?
*/
function dspnews(nitems, ncat, fcat, dmode, fyear, ref)
{
	var nidx = 0;
	var target_window = "";
	var multimedia_label = "";
	var multimedia_class = "";

      if (dmode == "h") {fyear = "20xx"; ncat="R"; fcat="|"; ref="h";}		//BACKWARD COMPATIBILITY
	var year = fyear.toString().replace(/x/g,"");	// we do not want indexOf to search on x cause it will find no occurences

	switch(dmode)
	{
		case "t":
			document.write("<ul>");
			break;
		case "tpr":
			document.write('<div class="news_list"><ul>');
			break;
		case "h":	//BACKWARD COMPATIBILITY
			document.write('<div id="BxNewsLinks"><h3>Corporate Headlines <img width="200" height="1"><a target="_blank" href="http://investor.baxter.com/phoenix.zhtml?c=86121&p=irol-alerts"><img style="margin-top:2px;margin-bottom:-2px;" border="0" src="http://www.baxter.com/images/home/email_alerts.gif"></a>&nbsp;&nbsp;&nbsp;<a href="http://www.baxter.com/information/rss.html"><img style="margin-left:10px;margin-top:2px;margin-bottom:-2px;" border="0" src="http://www.baxter.com/images/home/rss.jpg"></a></h3><table border="0" cellspacing="0" cellpadding="0"><tr><td class="BxCol">');
			break;
	}


   	for (var i in wcnewsarray.sort(reverseSort))
      {
      	mytemp = eval('wc' + wcnewsarray[i]); 
      	for (var y in mytemp.sort(reverseSort))
		{
            var i = 0; match_str = false;
            while (ncat.length != i)
               {
               if (mytemp[y][10].indexOf(ncat.substr(i,1)) > -1) {match_str = true; break;}
               i += 1; 
               }

			// Filter by year, category (corporate, bioscience, etc...) and business/functions
			if ((mytemp[y][0].toString().indexOf(year) > -1) && (mytemp[y][8].indexOf(fcat.toString()) > -1) && (match_str) && (ref==mytemp[y][4]||ref==mytemp[y][5]))
			{

				//Load page in new window?
                            if ((mytemp[y][7].length > 0) || (append_domain_name != "")) {target_window=" target=\"_blank\" ";}

				// Multimedia item?
				if (mytemp[y][10] == "M")
				{
					switch (mytemp[y][9])
					{
						case "PPT":
						multimedia_label = " / PRESENTATION";
						multimedia_class = "";
						break;
						case "PDF":
						multimedia_label = " / PDF";
						multimedia_class = " class=\"ico ico_pdf\" ";
						break;
						case "WC":
						multimedia_label = " / WEBCAST";
						multimedia_class = " class=\"ico ico_video\" ";
						break;
						case "PC":
						multimedia_label = " / PODCAST";
						multimedia_class = " class=\"ico ico_audio\" ";
						break;
						default:
						multimedia_label = "";
						multimedia_class = "";

					}
				}

				if (dmode == "v")
				{
					document.write("<div class=\"article_intro\">");
					document.write("<div class=\"article_intro_thumbnail\">");
					document.write("<a href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">");
					document.write("<img src='" + mytemp[y][11] + "' alt='" + mytemp[y][13] + "'/></a></div>");
					document.write("<div class=\"article_intro_text\">");
					document.write("<h3>" + mytemp[y][1] + "</h3>");
					document.write("<p>");

					if (multimedia_label.length > 0)
					{
						document.write("<span" + multimedia_class + ">&nbsp;" + mytemp[y][6] + multimedia_label + "</span><br/>");
					}
					else
					{
						document.write(mytemp[y][6] + "<br/>");
					}

					document.write(mytemp[y][12] + "</p>");
                        	document.write("<a class=\"more\" href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">"+ mytemp[y][14] +"</a>");
					document.write("</div></div>");
				}
				else
				{
					//BACKWARD COMPATIBILITY
					if (dmode=="h")
					{
						if (nidx==3) {document.write('</td><td class="BxGutter">&nbsp;</td><td class="BxCol">');}
						document.write('<p><a target="' + mytemp[y][7] + '" href="' + append_domain_name + mytemp[y][3] + '">');
						document.write(mytemp[y][1] + '</a><span class="BxNewsDate">['+mytemp[y][6]+']</span></p>');
					}
					else
					{
					//Write headline to page
					document.write("<li>");
					if (dmode=="tpr") {document.write("<span" + multimedia_class + ">&nbsp;");}
					document.write(mytemp[y][6] + multimedia_label);
					if (dmode=="tpr") {document.write("</span>");}
					document.write("<br /><a href='" + append_domain_name + mytemp[y][3] + "'" + target_window + ">" + mytemp[y][1] + "</a></li>");
					}
				}

			nidx++;
			//multimedia_label = "";

			if (nidx >= nitems)
			{

				switch(dmode)
				{
					case "t":
						document.write("</ul>");
						break;
					case "tpr":
						document.write("</ul></div>");
						break;
					case "h": //BACKWARD COMPATIBILITY
						document.write('</td></tr></table></div>');
						break;
				}

				return;
			}

			}


		}
	}


	switch(dmode)
	{
		case "t":
			document.write("</ul>");
			break;
		case "tpr":
			document.write("</ul></div>");
			break;
		case "h": //BACKWARD COMPATIBILITY
			document.write('</td></tr></table></div>');
			break;

	}

}

var wc20100101 = MultiDimensionalArray(10,13);
wcnewsarray[idx++] = 20100101;
wc20100101[0][0] = 20100827;
wc20100101[0][1] = "&#x7532;&#x578B;&#x8840;&#x53CB;&#x75C5;&#x6CBB;&#x7597;&#x65B0;&#x4EA7;&#x54C1;&#x6216;&#x5C06;&#x767B;&#x9646;&#x4E2D;&#x56FD; ";
wc20100101[0][2] = "";
wc20100101[0][3] = "/press_room/press_releases/2010/100827news1.html";
wc20100101[0][4] = "h";
wc20100101[0][5] = "a";
wc20100101[0][6] = "Aug 27, 2010";
wc20100101[0][7] = "";
wc20100101[0][8] = "|1";
wc20100101[0][9] = "1";
wc20100101[0][10] = "R";
wc20100101[0][11] = "";
wc20100101[0][12] = "";
wc20100101[0][13] = "";
wc20100101[0][14] = "&#x66F4;&#x591A;";

wc20100101[1][0] = 20100820;
wc20100101[1][1] = "&#x8179;&#x900F;&#x5973;&#x5B69;&#x6700;&#x7231;&#x4E16;&#x535A;&#x975E;&#x6D32;&#x9986; ";
wc20100101[1][2] = "";
wc20100101[1][3] = "/press_room/press_releases/2010/100820news1.html";
wc20100101[1][4] = "h";
wc20100101[1][5] = "a";
wc20100101[1][6] = "Aug 20, 2010";
wc20100101[1][7] = "";
wc20100101[1][8] = "|1";
wc20100101[1][9] = "1";
wc20100101[1][10] = "R";
wc20100101[1][11] = "";
wc20100101[1][12] = "&#xFF08;2010&#x5E74;8&#x6708;&#xFF0C;&#x4E2D;&#x56FD;&#x4E0A;&#x6D77;&#xFF09;&#x8FD1;&#x65E5;&#xFF0C;&#x4E16;&#x535A;&#x4F1A;&#x8FCE;&#x6765;&#x4E86;&#x4E00;&#x4F4D;&#x7279;&#x6B8A;&#x7684;&#x5C0F;&#x5BA2;&#x4EBA;&#xFF0C;&#x5979;&#x5C31;&#x662F;&#x4E4B;&#x524D;&#x5907;&#x53D7;&#x4EBA;&#x4EEC;&#x5173;&#x6CE8;&#x7684;&#x8862;&#x5DDE;&#x8179;&#x900F;&#x5973;&#x5B69;&#x5C39;&#x4E50;&#x3002;";
wc20100101[1][13] = "";
wc20100101[1][14] = "&#x66F4;&#x591A;";

wc20100101[2][0] = 20100726;
wc20100101[2][1] = "&#x767E;&#x7279;&#x8FDE;&#x7EED;&#x7B2C;11&#x5E74;&#x53D1;&#x5E03;&#x53EF;&#x6301;&#x7EED;&#x53D1;&#x5C55;&#x62A5;&#x544A; ";
wc20100101[2][2] = "";
wc20100101[2][3] = "/press_room/press_releases/2010/100726news2.html";
wc20100101[2][4] = "h";
wc20100101[2][5] = "a";
wc20100101[2][6] = "Jul 26, 2010";
wc20100101[2][7] = "";
wc20100101[2][8] = "|1";
wc20100101[2][9] = "1";
wc20100101[2][10] = "R";
wc20100101[2][11] = "";
wc20100101[2][12] = "&#x8FD1;&#x65E5;&#xFF0C;&#x767E;&#x7279;&#x56FD;&#x9645;&#x6709;&#x9650;&#x516C;&#x53F8;&#xFF08;NYSE:BAX&#xFF09;&#x53D1;&#x5E03;&#x4E86;&#x5176;&#x540D;&#x4E3A;&#x300A;&#x4E3A;&#x4E86;&#x521B;&#x5EFA;&#x4E00;&#x4E2A;&#x66F4;&#x53EF;&#x6301;&#x7EED;&#x53D1;&#x5C55;&#x7684;&#x672A;&#x6765;&#xFF0C;&#x6211;&#x4EEC;&#x7684;&#x91CD;&#x70B9;&#x6240;&#x5728;&#x300B;&#x7684;2009&#x5E74;&#x53EF;&#x6301;&#x7EED;&#x53D1;&#x5C55;&#x62A5;&#x544A;&#x3002;&#x8FD9;&#x662F;&#x8BE5;&#x516C;&#x53F8;&#x8FDE;&#x7EED;&#x7B2C;&#x5341;&#x4E00;&#x5E74;&#x53D1;&#x5E03;&#x5176;&#x5173;&#x4E8E;&#x793E;&#x4F1A;&#x3001;&#x7ECF;&#x6D4E;&#x548C;&#x73AF;&#x5883;&#x65B9;&#x9762;&#x8868;&#x73B0;&#x7684;&#x53EF;&#x6301;&#x7EED;&#x53D1;&#x5C55;&#x62A5;&#x544A;&#x3002;&#x4ECA;&#x5E74;&#x53EF;&#x6301;&#x7EED;&#x53D1;&#x5C55;&#x62A5;&#x544A;&#x7684;&#x4EAE;&#x70B9;&#x4E4B;&#x4E00;&#x662F;&#x5176;FLEXBUMIN&#xFF08;&#x8F6F;&#x888B;&#x88C5;&#x4EBA;&#x8840;&#x767D;&#x86CB;&#x767D;&#xFF09;&#x4EA7;&#x54C1;&#x8FD1;&#x671F;&#x83B7;&#x5F97;&#x4E86;&#x82F1;&#x56FD;&#x78B3;&#x57FA;&#x91D1;&#x7684;&#x51CF;&#x78B3;&#x8BA4;&#x8BC1;&#x3002;";
wc20100101[2][13] = "";
wc20100101[2][14] = "&#x66F4;&#x591A;";

wc20100101[3][0] = 20100726;
wc20100101[3][1] = "&#x63A2;&#x7D22;&ldquo;&#x5206;&#x7EA7;&#x533B;&#x7597;&#x3001;&#x53CC;&#x5411;&#x8F6C;&#x8BCA;&rdquo;&#x793E;&#x533A;&#x7BA1;&#x7406;&#x65B0;&#x6A21;&#x5F0F; ";
wc20100101[3][2] = "";
wc20100101[3][3] = "/press_room/press_releases/2010/100726news1.html";
wc20100101[3][4] = "h";
wc20100101[3][5] = "a";
wc20100101[3][6] = "Jul 26, 2010";
wc20100101[3][7] = "";
wc20100101[3][8] = "|1";
wc20100101[3][9] = "1";
wc20100101[3][10] = "R";
wc20100101[3][11] = "";
wc20100101[3][12] = "&#xFF08;2010&#x5E74;7&#x6708;&#xFF0C;&#x4E2D;&#x56FD;&#x5317;&#x4EAC;&#xFF09;&#x7531;&#x5317;&#x4EAC;&#x5E02;&#x793E;&#x533A;&#x536B;&#x751F;&#x534F;&#x4F1A;&#x4E3B;&#x529E;&#x3001;&#x767E;&#x7279;&#x534F;&#x529E;&#x65E8;&#x5728;&#x63D0;&#x9AD8;&#x793E;&#x533A;&#x533B;&#x9662;&#x80BE;&#x75C5;&#x9632;&#x6CBB;&#x6C34;&#x5E73;&#xFF0C;&#x4FC3;&#x8FDB;&ldquo;&#x5206;&#x7EA7;&#x8BCA;&#x7597;&rdquo;&#x53CA;&ldquo;&#x53CC;&#x5411;&#x8F6C;&#x8BCA;&rdquo;&#x7684;&#x5317;&#x4EAC;&#x5E02;&#x793E;&#x533A;&#x6162;&#x6027;&#x80BE;&#x810F;&#x75C5;&#x6559;&#x80B2;&#x4E0E;&#x5E72;&#x9884;&#x9879;&#x76EE;&#xFF08;&ldquo;&#x873B;&#x8713;&#x9879;&#x76EE;&rdquo;&#xFF09;&#x65E5;&#x524D;&#x83B7;&#x5317;&#x4EAC;&#x5E02;&#x536B;&#x751F;&#x5C40;&#x9996;&#x53D1;&#x57FA;&#x91D1;&#x9879;&#x76EE;&#x786E;&#x7ACB;&#x5E76;&#x901A;&#x8FC7;&#x4E86;&#x9996;&#x8F6E;&#x7684;&#x62DB;&#x6807;&#x7533;&#x8BF7;&#x3002;";
wc20100101[3][13] = "";
wc20100101[3][14] = "&#x66F4;&#x591A;";

wc20100101[4][0] = 20100622;
wc20100101[4][1] = "&#x767E;&#x540D;&#x4E2D;&#x5916;&#x80BE;&#x79D1;&#x4E13;&#x5BB6;&#x5171;&#x540C;&#x5173;&#x6CE8;&#x8840;&#x900F;&#x6CBB;&#x7597;&#x89C4;&#x8303; ";
wc20100101[4][2] = "";
wc20100101[4][3] = "/press_room/press_releases/2010/100623news3.html";
wc20100101[4][4] = "h";
wc20100101[4][5] = "a";
wc20100101[4][6] = "Jun 22, 2010";
wc20100101[4][7] = "";
wc20100101[4][8] = "|1";
wc20100101[4][9] = "1";
wc20100101[4][10] = "R";
wc20100101[4][11] = "";
wc20100101[4][12] = "&#xFF08;2010&#x5E74;6&#x6708;3&#x65E5;&#xFF0C;&#x4E2D;&#x56FD;&#x4E0A;&#x6D77;&#xFF09;&#x7531;&#x767E;&#x7279;&#xFF08;&#x4E2D;&#x56FD;&#xFF09;&#x6295;&#x8D44;&#x6709;&#x9650;&#x516C;&#x53F8;&#x4E3B;&#x529E;&#x7684;&#x5168;&#x56FD;&#x6027;&#x80BE;&#x79D1;&#x533B;&#x751F;&#x4E13;&#x4E1A;&#x5B66;&#x672F;&#x6D3B;&#x52A8;&mdash;&mdash;&ldquo;2010&#x767E;&#x7279;&#x8840;&#x900F;&#x56FD;&#x9645;&#x9AD8;&#x5CF0;&#x8BBA;&#x575B;&rdquo;&#x8BBA;&#x575B;&#x5728;&#x4E0A;&#x6D77;&#x9686;&#x91CD;&#x4E3E;&#x884C;&#x3002;";
wc20100101[4][13] = "";
wc20100101[4][14] = "&#x66F4;&#x591A;";

wc20100101[5][0] = 20100622;
wc20100101[5][1] = "&ldquo;&#x80BE;&#x810F;&#x5173;&#x7231;&#x7F51;&rdquo;&#x529B;&#x63A8;&#x6162;&#x6027;&#x80BE;&#x75C5;&#x996E;&#x98DF;&#x6CBB;&#x7597; ";
wc20100101[5][2] = "";
wc20100101[5][3] = "/press_room/press_releases/2010/100623news2.html";
wc20100101[5][4] = "h";
wc20100101[5][5] = "a";
wc20100101[5][6] = "Jun 22, 2010";
wc20100101[5][7] = "";
wc20100101[5][8] = "|1";
wc20100101[5][9] = "1";
wc20100101[5][10] = "R";
wc20100101[5][11] = "";
wc20100101[5][12] = "&#x521A;&#x8FC7;&#x53BB;&#x7684;21&#x65E5;&#x662F;&#x519C;&#x5386;&#x4E8C;&#x5341;&#x56DB;&#x8282;&#x6C14;&#x4E4B;&#x4E00;&#x7684;&#x5C0F;&#x6EE1;&#xFF0C;&#x5929;&#x6587;&#x4E13;&#x5BB6;&#x8868;&#x793A;&#xFF0C;&#x5C0F;&#x6EE1;&#x8282;&#x6C14;&#x7684;&#x5230;&#x6765;&#x6807;&#x5FD7;&#x708E;&#x70ED;&#x590F;&#x5B63;&#x6B63;&#x5F0F;&#x5F00;&#x59CB;&#x3002;&#x9A6C;&#x4E0A;&#x5C31;&#x8981;&#x8FDB;&#x5165;&#x708E;&#x70ED;&#x590F;&#x5B63;&#xFF0C;&#x4E13;&#x5BB6;&#x63D0;&#x9192;&#xFF1A;&#x5E94;&#x591A;&#x591A;&#x6CE8;&#x610F;&#x590F;&#x65E5;&#x996E;&#x98DF;&#x3002;";
wc20100101[5][13] = "";
wc20100101[5][14] = "&#x66F4;&#x591A;";

wc20100101[6][0] = 20100622;
wc20100101[6][1] = "&#x5C3F;&#x6BD2;&#x75C7;&#x60A3;&#x513F;&#x516D;&#x4E00;&#x83B7;&#x7279;&#x6B8A;&#x793C;&#x7269; ";
wc20100101[6][2] = "";
wc20100101[6][3] = "/press_room/press_releases/2010/100623news1.html";
wc20100101[6][4] = "h";
wc20100101[6][5] = "a";
wc20100101[6][6] = "Jun 22, 2010";
wc20100101[6][7] = "";
wc20100101[6][8] = "|1";
wc20100101[6][9] = "1";
wc20100101[6][10] = "R";
wc20100101[6][11] = "";
wc20100101[6][12] = "&#x4ED6;&#x4EEC;&#x5929;&#x771F;&#x53EF;&#x7231;&#x3001;&#x4ED6;&#x4EEC;&#x5584;&#x826F;&#x6D3B;&#x6CFC;&#x3001;&#x4ED6;&#x4EEC;&#x6E34;&#x671B;&#x50CF;&#x5176;&#x4ED6;&#x5B69;&#x5B50;&#x4E00;&#x6837;&#x5065;&#x5EB7;&#x5F00;&#x5FC3;&#x7684;&#x6210;&#x957F;&hellip;&hellip;";
wc20100101[6][13] = "";
wc20100101[6][14] = "&#x66F4;&#x591A;";

wc20100101[7][0] = 20100520;
wc20100101[7][1] = "&#x5168;&#x56FD;&#x80BE;&#x79D1;&#x4E13;&#x5BB6;&#x70ED;&#x8BAE;&#x8179;&#x819C;&#x900F;&#x6790;&#x4E34;&#x5E8A;&#x79D1;&#x7814;&#x7684;&#x65B0;&#x52A8;&#x5411; ";
wc20100101[7][2] = "";
wc20100101[7][3] = "/press_room/press_releases/2010/100521news2.html";
wc20100101[7][4] = "h";
wc20100101[7][5] = "a";
wc20100101[7][6] = "May 20, 2010";
wc20100101[7][7] = "_blank";
wc20100101[7][8] = "|1";
wc20100101[7][9] = "1";
wc20100101[7][10] = "R";
wc20100101[7][11] = "";
wc20100101[7][12] = "2010&#x5E74; &ldquo;&#x5353;&#x8D8A;&#x8179;&#x900F;&#x4E2D;&#x5FC3;&rdquo;&#x8BBA;&#x575B;&#x5728;&#x5B81;&#x4E3E;&#x884C;";
wc20100101[7][13] = "";
wc20100101[7][14] = "&#x66F4;&#x591A;";

wc20100101[8][0] = 20100520;
wc20100101[8][1] = "APD&#x5F15;&#x9886;&#x4E2D;&#x56FD;&#x8179;&#x819C;&#x900F;&#x6790;&#x6CBB;&#x7597;&#x65B0;&#x8D8B;&#x52BF; ";
wc20100101[8][2] = "";
wc20100101[8][3] = "/press_room/press_releases/2010/100521news1.html";
wc20100101[8][4] = "h";
wc20100101[8][5] = "a";
wc20100101[8][6] = "May 20, 2010";
wc20100101[8][7] = "";
wc20100101[8][8] = "|1";
wc20100101[8][9] = "1";
wc20100101[8][10] = "R";
wc20100101[8][11] = "";
wc20100101[8][12] = "&ldquo;&#x81EA;&#x52A8;&#x5316;&#x8179;&#x819C;&#x900F;&#x6790;&#xFF08;APD&#xFF09;&#x6CBB;&#x7597;&#x4F18;&#x52BF;&#x53CA;&#x75C5;&#x4F8B;&#x4EA4;&#x6D41;&#x4F1A;&rdquo;&#x5728;&#x6CAA;&#x4E3E;&#x884C;";
wc20100101[8][13] = "";
wc20100101[8][14] = "&#x66F4;&#x591A;";

wc20100101[9][0] = 20100129;
wc20100101[9][1] = "&#x767E;&#x7279;&#x8179;&#x900F;&#x60A3;&#x8005;&#x72EC;&#x81EA;&#x9A7E;&#x8239;&#x6A2A;&#x6E21;&#x5927;&#x897F;&#x6D0B; ";
wc20100101[9][2] = "";
wc20100101[9][3] = "/press_room/features/100401features1.html";
wc20100101[9][4] = "h";
wc20100101[9][5] = "a";
wc20100101[9][6] = "Jan 29, 2010";
wc20100101[9][7] = "";
wc20100101[9][8] = "|1";
wc20100101[9][9] = "1";
wc20100101[9][10] = "M";
wc20100101[9][11] = "/images/press_room/features/2010/jeanlouisboat7.jpg";
wc20100101[9][12] = "2009&#x5E74;11&#x6708;&#xFF0C;59&#x5C81;&#x7684;Jean Louis Clemendot&#x7740;&#x624B;&#x505A;&#x4E86;&#x4E00;&#x4EF6;&#x5BF9;&#x4E8E;&#x672B;&#x671F;&#x80BE;&#x75C5;&#x60A3;&#x8005;&#x6765;&#x8BF4;&#x53F2;&#x65E0;&#x524D;&#x4F8B;&#x7684;&#x4E8B;&#x60C5;";
wc20100101[9][13] = "&#x767E;&#x7279;&#x8179;&#x900F;&#x60A3;&#x8005;&#x72EC;&#x81EA;&#x9A7E;&#x8239;&#x6A2A;&#x6E21;&#x5927;&#x897F;&#x6D0B;";
wc20100101[9][14] = "&#x8BE6;&#x7EC6;&#x4FE1;&#x606F;";

wc20100101[10][0] = 20100128;
wc20100101[10][1] = "&#x8179;&#x900F;&#x662F;&#x7EC8;&#x672B;&#x671F;&#x80BE;&#x75C5;&#x60A3;&#x8005;&#x7684;&#x4F18;&#x9009;&#x521D;&#x59CB;&#x6CBB;&#x7597;&#x65B9;&#x6848; ";
wc20100101[10][2] = "";
wc20100101[10][3] = "/press_room/press_releases/2010/100401news1.html";
wc20100101[10][4] = "h";
wc20100101[10][5] = "a";
wc20100101[10][6] = "Jan 28, 2010";
wc20100101[10][7] = "";
wc20100101[10][8] = "|1";
wc20100101[10][9] = "1";
wc20100101[10][10] = "R";
wc20100101[10][11] = "";
wc20100101[10][12] = "&ldquo;&#x80BE;&#x79D1;&#x533B;&#x5B66;&#x4FE1;&#x606F;&#x7CFB;&#x5217;&#x57CE;&#x5E02;&#x4F1A;&#x6C99;&#x9F99;&rdquo;&#x6D3B;&#x52A8;&#x4ECA;&#x5728;&#x676D;&#x4E3E;&#x884C; ";
wc20100101[10][13] = "";
wc20100101[10][14] = "&#x66F4;&#x591A;";

 dspnews(params['item'],params['ncat'],params['fcat'],params['dmode'],params['fyear'],params['ref']);
